home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Messaging / ODRecord.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  1.1 KB  |  47 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ODRecord.cpp
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     8/16/95    NP        1275241: IDL Review. Remove unnecessary
  13.                                     overrides.
  14.          <2>      8/3/95    RR        #1257260: Collapse B classes. Remove
  15.                                     somInit methods. Don't call IsInitialized
  16.                                     or SubclassResponsibility
  17.          <1>     1/26/95    NP        first checked in
  18.  
  19.     To Do:
  20. */
  21.  
  22. #define ODRecord_Class_Source
  23. #define VARIABLE_MACROS
  24. #include <ODRecord.xih>
  25.  
  26. SOM_Scope void  SOMLINK ODRecordInitODRecord(ODRecord *somSelf, Environment *ev)
  27. {
  28. //    ODRecordData *somThis = ODRecordGetData(somSelf);
  29.     ODRecordMethodDebug("ODRecord","ODRecordInitODRecord");
  30.  
  31.     SOM_TRY
  32.     
  33.         somSelf->InitODDescList(ev);
  34.         
  35.     SOM_CATCH_ALL
  36.     SOM_ENDTRY
  37. }
  38. #if 0
  39. SOM_Scope void  SOMLINK ODRecordsomUninit(ODRecord *somSelf)
  40. {
  41. //    ODRecordData *somThis = ODRecordGetData(somSelf);
  42.     ODRecordMethodDebug("ODRecord","ODRecordsomUninit");
  43.  
  44.     ODRecord_parent_ODDescList_somUninit(somSelf);
  45. }
  46. #endif /* 0 */
  47.